home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / misc / avmnfaxsrc1_33.lha / timer_proto.h < prev    next >
C/C++ Source or Header  |  1994-05-25  |  476b  |  18 lines

  1. /* $Header: pd:zvmrcs/timer_proto.h,v 1.1 1993/04/07 18:46:56 rvillari Exp $ */
  2. #ifndef _TIMER_PROTO_H
  3. #define _TIMER_PROTO_H
  4.  
  5. /* Timer i/o routines */
  6.  
  7. #include <devices/timer.h>
  8.  
  9. /* timer functions */
  10. struct timerequest *PrepareTimer();
  11. void DeleteTimer(struct timerequest*);
  12. void StartTimer(struct timerequest*, ULONG seconds, ULONG microseconds);
  13. void EndTimer(struct timerequest*);
  14. ULONG TimerSignal(struct timerequest*);
  15. struct timerequest * PrepareTimer(void);
  16.  
  17. #endif
  18.